home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 8174 / 8174.xpi / chrome / antbar.jar / content / grabber / parsers / parser.js next >
Text File  |  2009-12-30  |  862b  |  51 lines

  1. // 
  2. //  parser.js
  3. //  firefox
  4. //  
  5. //  Created by Zak on 2008-06-10.
  6. //  Copyright 2008-2009 Ant.com. All rights reserved.
  7. // 
  8.  
  9. /**
  10.  *
  11.  * ParserInterface
  12.  * interface ParserInterface {
  13.  * return an array of flv url 
  14.  *   this.getFlvArray = function ()
  15.  *
  16.  * };
  17.  *
  18.  */
  19. var AntParser = function()
  20. {
  21.     this.currentDocument = null;
  22.     
  23.     /**
  24.      * Return an array of ant flv object
  25.      */
  26.     this.getFlvArray = function ()
  27.     {
  28.         throw "NotImplemented";
  29.     }
  30.     
  31.     /**
  32.      * Return current document
  33.      * @return this.currentDocument     The current document
  34.      */
  35.     this.getCurrentDocument = function ()
  36.     {
  37.         return this.currentDocument;
  38.     }
  39.  
  40.     /**
  41.      * Set current document
  42.      * @param doc                       The new current document
  43.      */
  44.     this.setCurrentDocument = function (doc)
  45.     {
  46.         this.currentDocument = doc;
  47.     }
  48.     
  49. }
  50.  
  51.